home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 14642 / 14642.xpi / chrome / content / pluginAdvanced.js < prev    next >
Text File  |  2009-10-10  |  751b  |  24 lines

  1. /* Copyright 2009, Boomtango.com.  All Rights Reserved. */
  2. /* pluginAdvanced.js
  3.  * Responsible for the advanced settings dialog
  4.  */
  5. var mgr = {
  6.     onLoad: function(){
  7.         this.plugin = window.arguments[0];
  8.         if(this.plugin && this.plugin.onAdvancedLoad){
  9.             this.plugin.onAdvancedLoad(document, document.getElementById("content"));
  10.         }
  11.     },
  12.     onDefault: function(){
  13.         if(this.plugin && this.plugin.onAdvancedDefault){
  14.             this.plugin.onAdvancedDefault(document, document.getElementById("content"));
  15.         }
  16.     },
  17.             
  18.     onOK: function(){
  19.         if(this.plugin && this.plugin.onAdvancedOK){
  20.             this.plugin.onAdvancedOK(document, document.getElementById("content"));
  21.         }
  22.     }
  23. };
  24.